home *** CD-ROM | disk | FTP | other *** search
- // application globals
- Boolean gDone;
-
- // prototypes for the application
- void InitToolbox( void );
- void InitGlobals( void );
-
- /********************************************************************
-
- Init Tool Box Function
-
- *********************************************************************/
- void InitToolbox()
- {
- InitGraf( (Ptr) &qd.thePort );
- InitFonts();
- InitWindows();
- InitMenus();
- FlushEvents( everyEvent,0 );
- TEInit();
- InitDialogs( 0L );
- InitCursor();
- }
-
- /********************************************************************
-
- Init Tool Box Function
-
- *********************************************************************/
- void InitGlobals( void )
- {
- gDone = FALSE;
- }
-
- /********************************************************************
-
- main Function
-
- *********************************************************************/
- main()
- {
- InitToolbox();
- InitGlobals();
- DrawTheMenuBar();
-
- DrawMyWindow();
-
- do {
- EventLoop();
- }while( gDone != TRUE );
-
- ExitToShell();
- }
-